"use client";
import { useRouter } from "next/navigation";
import TestIntroPage from "@/components/Componentes/test-intro-page";
import NavigationButton from "@/components/Componentes/navigation-button";
import StickyHeader from "@/components/Componentes/sticky-header";
import { PageBackground } from "@/components/Componentes/page-background";
type TestIntroClientProps = {
title: string;
estimateTime: string;
estimateLabel: string;
disclaimerText: string;
startLabel: string;
bulletPoints: readonly string[];
closeLabel: string;
informationLabel: string;
};
export default function TestIntroClient({
title,
estimateTime,
estimateLabel,
disclaimerText,
startLabel,
bulletPoints,
closeLabel,
informationLabel,
}: TestIntroClientProps) {
const router = useRouter();
return (
<>
{
router.back();
}}
/>
>
);
}